home *** CD-ROM | disk | FTP | other *** search
- // ===============================================================
- // Vertex Program:
- // Description:
- // Last Update: 14/08/2003
- // Coder: Andrey Honich
- // ===============================================================
-
- #include "../CGVPMacro.csi"
-
-
- VertAttributes { POSITION_3 TEXCOORD0_2 }
-
- MainInput { VIEWPROJ_MATRIX, LIGHT_MATRIX }
- DeclarationsScript
- {
- IN_T0_C0
- OUT_T0_T1_C0
- }
- PositionScript = PosCommon
- CoreScript
- {
- OUT.Tex0.xy = IN.TexCoord0.xy;
- OUT.Tex1 = mul(LightMatrix, vPos);
- OUT.Color = IN.Color;
- }
-